home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Misc / Dump.h < prev    next >
C/C++ Source or Header  |  2005-03-14  |  1KB  |  44 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   Dump.h - It dumps the notes to a text file
  5.  
  6.   Copyright (C) 2002-2005 Nasca Octavian Paul
  7.   Author: Nasca Octavian Paul
  8.  
  9.   This program is free software; you can redistribute it and/or modify
  10.   it under the terms of version 2 of the GNU General Public License 
  11.   as published by the Free Software Foundation.
  12.  
  13.   This program is distributed in the hope that it will be useful,
  14.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.   GNU General Public License (version 2) for more details.
  17.  
  18.   You should have received a copy of the GNU General Public License (version 2)
  19.   along with this program; if not, write to the Free Software Foundation,
  20.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  21. */
  22. #ifndef DUMP_H
  23. #define DUMP_H
  24.  
  25. #include <stdio.h>
  26.  
  27. class Dump{
  28.     public:
  29.     Dump();
  30.     ~Dump();
  31.     void startnow();
  32.     void inctick();
  33.     
  34.     void dumpnote(char chan,char note, char vel);
  35.     void dumpcontroller(char chan,unsigned int type,int par);
  36.     
  37.     private:
  38.     FILE *file;
  39.     int tick;
  40.     int k;
  41.     int keyspressed;
  42. };
  43. #endif
  44.